home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / predator.scm < prev    next >
Text File  |  2009-12-15  |  5KB  |  136 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Predator effect
  5. ; Copyright (c) 1997 Adrian Likins
  6. ; aklikins@eos.ncsu.ed
  7. ;
  8. ;  The idea here is too make the image/selection look sort of like
  9. ;  the view the predator had in the movies. ie, kind of a thermogram
  10. ;  type of thing. Works best on colorful rgb images.
  11. ;
  12. ; This program is free software; you can redistribute it and/or modify
  13. ; it under the terms of the GNU General Public License as published by
  14. ; the Free Software Foundation; either version 2 of the License, or
  15. ; (at your option) any later version.
  16. ;
  17. ; This program is distributed in the hope that it will be useful,
  18. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. ; GNU General Public License for more details.
  21. ;
  22. ; You should have received a copy of the GNU General Public License
  23. ; along with this program; if not, write to the Free Software
  24. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26.  
  27. (define (script-fu-predator image
  28.                             drawable
  29.                             edge-amount
  30.                             pixelize
  31.                             pixel-size
  32.                             keep-selection
  33.                             separate-layer)
  34.   (let* (
  35.         (type (car (gimp-drawable-type-with-alpha drawable)))
  36.         (image-width (car (gimp-image-width image)))
  37.         (image-height (car (gimp-image-height image)))
  38.         (active-selection 0)
  39.         (from-selection 0)
  40.         (selection-bounds 0)
  41.         (select-offset-x 0)
  42.         (select-offset-y 0)
  43.         (select-width 0)
  44.         (select-height 0)
  45.         (effect-layer 0)
  46.         (active-layer 0)
  47.         )
  48.  
  49.     (gimp-image-undo-group-start image)
  50.     (gimp-layer-add-alpha drawable)
  51.  
  52.     (if (= (car (gimp-selection-is-empty image)) TRUE)
  53.         (begin
  54.           (gimp-selection-layer-alpha drawable)
  55.           (set! active-selection (car (gimp-selection-save image)))
  56.           (set! from-selection FALSE)
  57.         )
  58.         (begin
  59.           (set! from-selection TRUE)
  60.           (set! active-selection (car (gimp-selection-save image)))
  61.         )
  62.     )
  63.  
  64.     (set! selection-bounds (gimp-selection-bounds image))
  65.     (set! select-offset-x (cadr selection-bounds))
  66.     (set! select-offset-y (caddr selection-bounds))
  67.     (set! select-width (- (cadr (cddr selection-bounds)) select-offset-x))
  68.     (set! select-height (- (caddr (cddr selection-bounds)) select-offset-y))
  69.  
  70.     (if (= separate-layer TRUE)
  71.         (begin
  72.           (set! effect-layer (car (gimp-layer-new image
  73.                                                   select-width
  74.                                                   select-height
  75.                                                   type
  76.                                                   "glow layer"
  77.                                                   100
  78.                                                   NORMAL-MODE))
  79.           )
  80.  
  81.           (gimp-layer-set-offsets effect-layer select-offset-x select-offset-y)
  82.           (gimp-image-add-layer image effect-layer -1)
  83.           (gimp-selection-none image)
  84.           (gimp-edit-clear effect-layer)
  85.  
  86.           (gimp-selection-load active-selection)
  87.           (gimp-edit-copy drawable)
  88.           (let ((floating-sel (car (gimp-edit-paste effect-layer FALSE))))
  89.             (gimp-floating-sel-anchor floating-sel)
  90.           )
  91.           (gimp-image-set-active-layer image effect-layer)
  92.         )
  93.         (set! effect-layer drawable)
  94.     )
  95.     (set! active-layer effect-layer)
  96.  
  97.     ; all the fun stuff goes here
  98.     (if (= pixelize TRUE)
  99.         (plug-in-pixelize RUN-NONINTERACTIVE image active-layer pixel-size)
  100.     )
  101.     (plug-in-max-rgb RUN-NONINTERACTIVE image active-layer 0)
  102.     (plug-in-edge RUN-NONINTERACTIVE image active-layer edge-amount 1 0)
  103.  
  104.     ; clean up the selection copy
  105.     (gimp-selection-load active-selection)
  106.  
  107.     (if (= keep-selection FALSE)
  108.         (gimp-selection-none image)
  109.     )
  110.  
  111.     (gimp-image-set-active-layer image drawable)
  112.     (gimp-image-remove-channel image active-selection)
  113.     (gimp-image-undo-group-end image)
  114.     (gimp-displays-flush)
  115.   )
  116. )
  117.  
  118. (script-fu-register "script-fu-predator"
  119.   _"_Predator..."
  120.   _"Add a 'Predator' effect to the selected region (or alpha)"
  121.   "Adrian Likins <adrian@gimp.org>"
  122.   "Adrian Likins"
  123.   "10/12/97"
  124.   "RGB*"
  125.   SF-IMAGE       "Image"          0
  126.   SF-DRAWABLE    "Drawable"       0
  127.   SF-ADJUSTMENT _"Edge amount"    '(2 0 24 1 1 0 0)
  128.   SF-TOGGLE     _"Pixelize"       TRUE
  129.   SF-ADJUSTMENT _"Pixel amount"   '(3 1 16 1 1 0 0)
  130.   SF-TOGGLE     _"Keep selection" TRUE
  131.   SF-TOGGLE     _"Separate layer" TRUE
  132. )
  133.  
  134. (script-fu-menu-register "script-fu-predator"
  135.                          "<Image>/Filters/Artistic")
  136.